ee3f20dddcc509de784b5f6b22b305a896e7a907,Common/Frameworks/ERExtensions/Sources/er/extensions/ERXFrameworkPrincipal.java,ERXFrameworkPrincipal,setUpFrameworkPrincipalClass,#Class#,118
Before Change
// NSLog.debug.appendln("No requirements: " + c.getName());
} catch (IllegalAccessException e) {
NSLog.err.appendln("Can't read field REQUIRES from " + c.getName() + ", check if it is 'public static Class[] REQUIRES= new Class[] {...}' in this class");
NSForwardException._runtimeExceptionForThrowable(e);
}
ERXFrameworkPrincipal principal = (ERXFrameworkPrincipal)c.newInstance();
initializedFrameworks.setObjectForKey(principal,c.getName());
After Change
// NSLog.debug.appendln("No requirements: " + c.getName());
} catch (IllegalAccessException e) {
NSLog.err.appendln("Can't read field REQUIRES from " + c.getName() + ", check if it is 'public static Class[] REQUIRES= new Class[] {...}' in this class");
throw NSForwardException._runtimeExceptionForThrowable(e);
}
ERXFrameworkPrincipal principal = (ERXFrameworkPrincipal)c.newInstance();
initializedFrameworks.setObjectForKey(principal,c.getName());